All Questions
Tagged with object-orientedgame
213 questions
7votes
4answers
187views
Deck Value Bet-Like Game
I have just gotten into Object Oriented Programming and I've been practicing it through Python. But I think I still haven't clearly grasped how it should be used effectively. I've created a game Using ...
3votes
2answers
185views
BlackJack in python
I began creating blackjack in python; however, I'm looking to simulate it, so I'm thinking I'm going to need to optimize it so that I don't just leave my computer running for three hours waiting for ...
3votes
0answers
108views
Text-Based Multiplayer RPG Engine using Flask & React
As a final project for a software engineering bootcamp, I decided to make a text-based multiplayer RPG game engine. Using Python, Flask, & Flask-SocketIO for the backend and React & TypeScript ...
5votes
2answers
290views
2048 game in Java
I am a beginner learning Java, and I coded a command line version of the game 2048 for practice. Any feedback, especially regarding best practices, object-oriented principles, and tidying up the code ...
2votes
3answers
163views
Othello (Reversi) in C++17 and CMake
Othello is a two-player strategy game typically played over the board. I implemented Othello in C++17 with CMake as the build system. I'm looking for feedback on cleanness, readability, and ...
3votes
1answer
253views
Simple blackjack program in Java
I wrote this blackjack game for my APCSA class (already submitted) and was wondering if anyone had feedback on what parts of it are improperly written. My main concern is the fact that I am printing ...
3votes
2answers
3kviews
Event System using C++
I am excited to share that I have developed an event system in C++. I have always been passionate about programming and have long aspired to create a low-level game engine solely using C++, OpenGL, ...
2votes
2answers
153views
OOP tic-tac-toe
I have created my first personal project - tic tac toe game. It is my first time approaching code using Object-Oriented paradigm and I would like to get feedback on it and on aspects where I can ...
0votes
2answers
444views
OOP Tic Tac Toe Game
I have built a project OOP Tic Tac Toe. I am beginner-intermediate developer. Can you tell me what I can improve, what I did wrong and what to look up to? This is my first OOP project. I'm happy that ...
5votes
1answer
433views
Simple Ellipse Collision Mini Game
I am doing an exercise to help me understand C#and OOP. The exercise is supposed to teach me about ...
5votes
3answers
1kviews
Simple N Puzzle console game
I am completely new to object oriented programing (OOP). I have also never worked with C# before. The exercise from my book had some requirements that should be ...
1vote
2answers
91views
Object Oriented Hangman in Python Version 2.0
I am looking for as much criticism as possible. Specifically I am trying to institute BEST PRACTICES for OOP and game design. Enjoy! Github hangman repository Each Class is in a separate file and ...
2votes
1answer
356views
Pong in c++ console app
I would really appriciate if someone could review my code and give me feedback. This was my first multi file project. Main: ...
4votes
1answer
187views
GUI tower defense: path and enemies
Working on creating new tower defense in JS. May be port to React. How to improve? Only made enemies and path so far. In below demo, path is white background and enemy is red circles and green squares....
3votes
1answer
216views
pygame with infinitely scrolling background - handling of sprites movement
In my current project, I try to implement the basic logic of the game "Vampire Survival" (Little impression of the first level can be seen in this video on Youtube). Question I want to know, ...